home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
HPAVC
/
HPAVC CD-ROM.iso
/
PWAULTP3.ZIP
/
PWAPRGMS.A02
/
PWA95
/
PWAEQU11.ZIP
/
INSTALL.BAT
< prev
next >
Wrap
DOS Batch File
|
1995-11-15
|
1KB
|
45 lines
@echo off
rem
rem -------------------------------------------------------------------------
rem Enhanced Quick Uploader v1.1 by Drew [PWA]
rem -------------------------------------------------------------------------
rem 68
rem 729
rem
if .%1==. goto help
if .%2==. goto help
if not exist %1 goto help
mkpcbtxt %1 /i:68 "!%2\EQU.PPE"
mkpcbtxt %1 /i:729 "!%2\EQU.PPE"
goto done
:help
cls
echo.
echo To install Enhanced Quick Uploader, use the following syntax:
echo.
echo install PCBTEXT PPEDIR
echo.
echo PCBTEXT is the full pathname of your PCBTEXT file.
echo.
echo PPEDIR is the directory of where EQU is located.
echo.
echo Example:
echo.
echo install C:\PCB\GEN\PCBTEXT C:\PPE\EQU
echo.
pause
:done
echo.
echo Don't forget to add U.PPE and UB.PPE to your CMD.LST!
echo.
echo Enhanced Quick Uploader v1.1 by Drew [PWA]
echo.
echo Gawd I hate batch files. T/csh-shell scripts would have been so
echo much nicer. :) --Drew
echo.